home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994…tember: Reference Library / Dev.CD Sep 94.toast / Periodicals / develop / develop Issue 11 / develop 11 code / Exceptions / Exceptions.r < prev    next >
Encoding:
Text File  |  1992-07-15  |  807 b   |  40 lines  |  [TEXT/MPS ]

  1.  
  2. /*********************************************************************
  3.  
  4. FILENAME
  5.     Exceptions.r
  6.     
  7. DESCRIPTION
  8.     This builds Exceptions.rsrc which can be pasted into debugger
  9.     prefs with RezEdit. See Exceptions.h for more information.
  10.  
  11. COPYRIGHT
  12.     Copyright © Apple Computer, Inc. 1989-1991
  13.     All rights reserved.
  14.  
  15. MODIFICATION HISTORY
  16.     11/05/91    Sean Parent
  17.         1)    Created
  18.  
  19. *********************************************************************/
  20.  
  21. include "dprintf" 'dcmd' (129) as 'dcmd' (129, "dprintf");
  22.  
  23. type 'mxbm' {
  24.     integer = $$CountOf(MacroArray);    /* number of macros */
  25.     array MacroArray {
  26.         pstring;                        /* macro name */
  27.         pstring;                        /* expands to */
  28.     };
  29. };
  30.  
  31. resource 'mxbm' (128, "Exception Handling") {
  32.     {
  33.         "doTrace",        "G";
  34.         "traceGo",        "MC doTrace 'G'";
  35.         "traceBreak",    "MC doTrace ''";
  36.     };
  37. };
  38.  
  39.  
  40.